Remediation scripts/IP forwarding on your virtual machine should be disabled/Powershell/DisableIpforwarder.ps1 (5 lines of code) (raw):
$nics = Get-AzNetworkInterface
foreach($nic in $nics){
$nic.EnableIPForwarding = 1
Set-AzNetworkInterface -NetworkInterface $nic
}